Coffeekraken s-typography-component
Full stack typography styling for your website including titles, paragraphs, lists, inline styles, blockquotes, etc...
Table of content
- Demo
- Features
- Install
- Get Started
- SASS API
- The
tf
and vr
classes - Browsers support
- Contribute
- Who are Coffeekraken?
- Licence
Features
- Title styling
h1 h2 h3 h4 h5 h6
- Paragraphs styling
p p.lead
- Lists styling
ul ol li dl dt dd
- Inline text styling
mark del s ins u small strong em
- Caption and figcaption styling
caption figcaption
- Quote styling
quote blockquote cite
Install
npm install coffeekraken-s-typography-component --save
Get Started
First, import and init sugar into your project.
Then, import the component into your scss file like so:
@import 'node_modules/coffeekraken-s-typography-component/index';
Then simply generate the classes using the component mixin like so:
@include s-typography-classes(
$color: primary
);
And finally use the classes inside your html
<div class="tf vr">
<h1>Hello world</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum vehicula, lorem accumsan semper tincidunt, metus diam porta tellus.</p>
<ul>
<li>List item #1</li>
<li>List item #2</li>
<li>List item #3</li>
</ul>
</div>
<h1 class="h2">Hello world</h1>
<p class="p">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum vehicula, lorem accumsan semper tincidunt, metus diam porta tellus.</p>
<ul class="ul">
<li class="li">List item #1</li>
<li class="li">List item #2</li>
<li class="li">List item #3</li>
</ul>
The tf
and vr
classes
The tf
class is for "text format". It allows you to apply typography styling on the tags that are scoped inside it like so:
<div class="tf">
<h1>I will be styled like an h1</h1>
</div>
<h1>I will not bein styled like an h1</h1>
<h1 class="h1">I will be styled like an h1</h1>
The vr
class is for "vertical rhythm". It allows you to apply margins between typography styled elements on the tags that are scoped inside it like so:
<div class="tf vr">
<h1>I will be styled like an h1 and have a margin bottom if needed</h1>
<p>I will be styled like a paragraph and have a margin bottom if needed</p>
</div>
Browsers support
IE / Edge | Firefox | Chrome | Safari |
---|
IE11+ | last 2 versions | last 2 versions | last 2 versions |
As browsers are automatically updated, we will keep as reference the last two versions of each but this component can work on older ones as well.
The webcomponent API (custom elements, shadowDOM, etc...) is not supported in some older browsers like IE10, etc... In order to make them work, you will need to integrate the corresponding polyfill.
Contribute
This is an open source project and will ever be! You are more that welcomed to contribute to his development and make it more awesome every day.
To do so, you have several possibilities:
- Share the love ❤️
- Declare issues
- Fix issues
- Add features
- Build web component
Who are Coffeekraken
We try to be some cool guys that build some cool tools to make our (and yours hopefully) every day life better.
License
The code is available under the MIT license. This mean that you can use, modify, or do whatever you want with it. This mean also that it is shipped to you for free, so don't be a hater and if you find some issues, etc... feel free to contribute instead of sharing your frustrations on social networks like an asshole...